Gets the system configured warehouse to use. Introduced in 2023.1
            | Method | GetWarehouseToUse | 
The request body is of type GetWarehouseToUse.
| Name | Description | Data Type | 
|---|---|---|
| ClientCode | For internal use only. | xml:string | 
| SessionToken | For internal use only. | xml:string | 
| Item_ID | The identifier for the Item. | xml:int | 
// Example: Get the warehouse to use for Item with ID 579 MakeAJAXCall("Fulfillment.GetWarehouseToUse", { Item_ID: 579 }, console.log)
The response body is of type GetWarehouseToUseResponse.
| Name | Description | Data Type | 
|---|---|---|
| GetWarehouseToUseResult | A string value containing a JSON object. // Example 1: Returning no specified warehouse to use. { "Data": { "WarehouseToUse": "" }, "Result": { "Success": true, "Message": "No specific warehouse to use was returned.", "ElapsedTime": "47 ms" } } 
  | xml:string |